home *** CD-ROM | disk | FTP | other *** search
/ Cre@te Online 2000 December / Cre@teOnline CD05.iso / MacSoft / XML ConsoleMax.sea / XML ConsoleMax / Required / swingall.jar / javax / swing / plaf / basic / BasicPasswordFieldUI.class (.txt) < prev    next >
Encoding:
Java Class File  |  1999-07-15  |  671 b   |  22 lines

  1. package javax.swing.plaf.basic;
  2.  
  3. import javax.swing.JComponent;
  4. import javax.swing.plaf.ComponentUI;
  5. import javax.swing.text.Element;
  6. import javax.swing.text.PasswordView;
  7. import javax.swing.text.View;
  8.  
  9. public class BasicPasswordFieldUI extends BasicTextFieldUI {
  10.    public View create(Element var1) {
  11.       return new PasswordView(var1);
  12.    }
  13.  
  14.    public static ComponentUI createUI(JComponent var0) {
  15.       return new BasicPasswordFieldUI();
  16.    }
  17.  
  18.    protected String getPropertyPrefix() {
  19.       return "PasswordField";
  20.    }
  21. }
  22.